encoding/xml.fieldInfo.xmlns (field)

23 uses

	encoding/xml (current package)
		marshal.go#L503: 			start.Name.Space, start.Name.Local = xmlname.xmlns, xmlname.name
		marshal.go#L512: 		start.Name.Space, start.Name.Local = finfo.xmlns, finfo.name
		marshal.go#L542: 		name := Name{Space: finfo.xmlns, Local: finfo.name}
		marshal.go#L550: 		tinfo.xmlname.xmlns == "" && tinfo.xmlname.name == "" &&
		marshal.go#L676: 		start.Name.Space = finfo.xmlns
		read.go#L446: 			if finfo.xmlns != "" && finfo.xmlns != start.Name.Space {
		read.go#L447: 				e := "expected element <" + finfo.name + "> in name space " + finfo.xmlns + " but have "
		read.go#L470: 					if a.Name.Local == finfo.name && (finfo.xmlns == "" || finfo.xmlns == a.Name.Space) {
		read.go#L699: 		if finfo.flags&fElement == 0 || len(finfo.parents) < len(parents) || finfo.xmlns != "" && finfo.xmlns != start.Name.Space {
		typeinfo.go#L24: 	xmlns   string
		typeinfo.go#L119: 		finfo.xmlns, tag = ns, t
		typeinfo.go#L173: 	if finfo.xmlns != "" && tag == "" {
		typeinfo.go#L191: 			finfo.xmlns, finfo.name = xmlname.xmlns, xmlname.name
		typeinfo.go#L270: 		if oldf.xmlns != "" && newf.xmlns != "" && oldf.xmlns != newf.xmlns {
		typeinfo.go#L288: 			if newf.name == oldf.name && newf.xmlns == oldf.xmlns {